home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Communication / LibraryOfCongress / Source / ColorBars.h < prev    next >
Text File  |  1992-08-05  |  348b  |  25 lines

  1. #import <appkit/View.h>
  2.  
  3. #define PLAIN        0
  4. #define FADE        1
  5. #define CLEAR        2
  6. #define SCRAMBLE    3
  7. #define WINKOFF        4
  8. #define FSCRAMBLE    5
  9. #define SWAB        6
  10.  
  11. @interface ColorBars:View
  12. {
  13.     NXColor backgroundColor;
  14.     int style;
  15.     int running;
  16.     float delay;
  17. }
  18.  
  19. - setBackgroundColor:(NXColor)c;
  20. - setDrawstyle:(int)n;
  21. - fill:(NXColor)c;
  22. - stop;
  23.  
  24. @end
  25.